home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / Appsprites / USER CODE / Application.h < prev    next >
Text File  |  1993-07-09  |  1KB  |  54 lines

  1. ///--------------------------------------------------------------------------------------
  2. //    Application.h
  3. //
  4. //    Created:    Sunday, April 11, 1993
  5. //    By:        Tony Myles
  6. //
  7. //    Copyright: © 1993 Tony Myles, All rights reserved worldwide.
  8. ///--------------------------------------------------------------------------------------
  9.  
  10.  
  11. #ifndef __APPLICATION__
  12. #define __APPLICATION__
  13.  
  14.  
  15. enum
  16. {
  17.     kNumberOfMoreMastersCalls = 3
  18. };
  19.  
  20. enum
  21. {
  22.     kWindowResID = 1
  23. };
  24.  
  25. enum
  26. {
  27.     kErrorAlertResID = 132,
  28.     kCantRunAlertResID = 133,
  29.     kErrorStringListResID = 128,
  30.     kFatalErrorStringIndex = 1,
  31.     kCantFindResourceStringIndex = 2
  32. };
  33.  
  34. #define kSeriousDamageString "\pCould not even get error string!\rThis application is seriously damaged!"
  35.  
  36.  
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40.  
  41. void InitializeMasters(short numberOfMasters);
  42. Boolean CheckSystem(void);
  43. void CreateWindow(void);
  44. void ErrorAlert(OSErr err, short errorStringIndex);
  45. void FatalError(OSErr err);
  46. void CantFindResource(void);
  47. void CantRunOnThisMachine(void);
  48.  
  49. #ifdef __cplusplus
  50. };
  51. #endif
  52.  
  53.  
  54. #endif /* __APPLICATION__ */